home *** CD-ROM | disk | FTP | other *** search
/ Core Concepts in Art 2 / Core Concepts in Art (Frames of Reference)(The McGraw-Hill Companies)(2004).iso / mac / media / print.swf / scripts / DefineButton2_45 / BUTTONCONDACTION on(release).as next >
Text File  |  2003-10-12  |  542b  |  18 lines

  1. on(release){
  2.    i = 0;
  3.    while(i < questionBuilder_mc.titleArray.length)
  4.    {
  5.       titlesHolder["titles" + i].pointer._visible = 0;
  6.       theTextColor = new Color("titlesHolder.titles" + i + ".title");
  7.       theChapterColor = new Color("titlesHolder.titles" + i + ".chapterNum");
  8.       theTextColor.setRGB(6710886);
  9.       theChapterColor.setRGB(6710886);
  10.       this["vh" + i].selected = 0;
  11.       i++;
  12.    }
  13.    deselect_btn._visible = 0;
  14.    select_btn._visible = 1;
  15.    printFlashcard_btn._visible = 0;
  16.    maxListItems = 0;
  17. }
  18.